home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / LANG / C / LIB / DESK / CORE / Desk / h / Font2 < prev    next >
Text File  |  1996-05-21  |  739b  |  30 lines

  1.  
  2. #ifndef __Desk_Font2_h
  3. #define __Desk_Font2_h
  4. #ifdef __cplusplus
  5. extern "C" {
  6. #endif
  7. #ifndef __Desk_Font_h
  8. #include "Desk.Font.h"
  9. #endif
  10. typedef struct Desk_font2_block {
  11. Desk_font_handle handle; 
  12. Desk_font_info info; 
  13. }
  14. Desk_font2_block;
  15. Desk_os_error *Desk_Font2_ClaimFont(Desk_font2_block **font2, const char *name, int sizex, int sizey);
  16. Desk_os_error *Desk_Font2_ReclaimFont(Desk_font2_block **font2, const char *name, int xsize, int ysize);
  17. void Desk_Font2_ReleaseFont(Desk_font2_block **font2);
  18. void Desk_Font2_Initialise(void);
  19. #ifdef Desk_DeskLib_DEBUG
  20. #ifdef Desk__making_Font2
  21. #include "Debug.h"
  22. #define Desk_debug_level Desk_font2_debuglevel
  23. #endif
  24. extern int Desk_font2_debuglevel;
  25. #endif
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29. #endif
  30.